home *** CD-ROM | disk | FTP | other *** search
- /*$Author: DCODY $*/
- /*$Date: 06 Jan 1993 15:59:46 $*/
- /*$Header: X:/sccs/inc/mixers.h_v 1.1 06 Jan 1993 15:59:46 DCODY $*/
- /*$Log: X:/sccs/inc/mixers.h_v $
- *
- * Rev 1.1 06 Jan 1993 15:59:46 DCODY
- * added 'extern' to all the prototypes
- *
- * Rev 1.0 15 Jun 1992 09:58:42 BCRANE
- * Initial revision.
- */
- /*$Logfile: X:/sccs/inc/mixers.h_v $*/
- /*$Modtimes$*/
- /*$Revision: 1.1 $*/
- /*$Workfile: mixers.h $*/
-
- /*\
- |*|----====< MIXERS.H >====----
- |*|
- |*| header file to the lowlevel mixer access routines
- |*|
- |*| Copyright (c) 1991, Media Vision, Inc. All rights reserved
- |*|
- \*/
-
-
- /* mixer initialization function. */
-
- extern int MVInitMixerCode(char *);
-
- /* set a mixer channel */
-
- extern int cMVSetMixerFunction();
- extern int (far *MVSetMixerFunction)();
-
- /* set a volume channel */
-
- extern int cMVSetVolumeFunction();
- extern int (far *MVSetVolumeFunction)();
-
- /* set the filter */
-
- extern int cMVSetFilterFunction();
- extern int (far *MVSetFilterFunction)();
-
- /* set the cross channel */
-
- extern int cMVSetCrossChannel();
- extern int (far *MVSetCrossChannel)();
-
- /* get a mixer channel */
-
- extern int cMVGetMixerFunction();
- extern int (far *MVGetMixerFunction)();
-
- /* get a volume channel */
-
- extern int cMVGetVolumeFunction();
- extern int (far *MVGetVolumeFunction)();
-
- /* get the filter */
-
- extern int cMVGetFilterFunction();
- extern int (far *MVGetFilterFunction)();
-
- /* get the cross channel */
-
- extern int cMVGetCrossChannel();
- extern int (far *MVGetCrossChannel)();
-
- /* get/set the realsound switch */
-
- extern int cMVRealSoundSwitch();
- extern int (far *MVRealSoundSwitch)();
-
- /* get/set the FM split bit */
-
- extern int cMVFMSplitSwitch();
- extern int (far *MVFMSplitSwitch)();
-
- /* state table load/fetch for locally linked mixer code */
-
- extern struct MVState far *MVMixerHWState(struct MVState far *);
-
-
- /*\
- |*| End of MIXERS.H
- \*/
-
-